Conversation
fixes #54 Beginning with release version 8 you need to give a fileset for "system" module of filebeat. Version 7 just used defaults. Since we are thinking about replacing modules by elastic agents and filebeat only without modules in special cases, I add a quick fix and flag it as experimental. Let's see how it works.
|
My initial diagnosis was wrong: https://discuss.elastic.co/t/filebeat-setup-exiting-module-system-is-configured-but-has-no-enabled-filesets/311584 . We just need to change the way we setup modules. Please note that #77 could make using modules in filebeat completely obsolete. Therefore I didn't put much effort in clean code for enabling modules. If we want to continue to support, we should find a better way than just running the same code over and over again. |
|
Default configuration with added modules will connect Filebeat to Logstash and then run Or, the most sophisticated solution: Make sure, Filebeat talks to Elasticsearch when doing |
0dd6a13
* Add fileset for system module fixes NETWAYS#54 Beginning with release version 8 you need to give a fileset for "system" module of filebeat. Version 7 just used defaults. Since we are thinking about replacing modules by elastic agents and filebeat only without modules in special cases, I add a quick fix and flag it as experimental. Let's see how it works. * with_items and block doesn't work everywhere * Task order * Disable enabling each module separately Refer to https://discuss.elastic.co/t/filebeat-setup-exiting-module-system-is-configured-but-has-no-enabled-filesets/311584 for details * Enable filesets for filebeat system module * Changed default for full stack * Pin peculiar beats to "7" for version install * remove specific version installation from beats tests * Remove check for specific version * Use template for system module * Change syntax for paths * Simpler approach * Disable removed docker input from tests
fixes #54
Beginning with release version 8 you need to give a fileset for "system" module of filebeat. Version 7 just used defaults.
Since we are thinking about replacing modules by elastic agents and filebeat only without modules in special cases, I add a quick fix and flag it as experimental. Let's see how it works.